<?php
$str = 'abcdef';
echo strlen($str); // 6
$str = ' ab cd ';
echo strlen($str); // 7
?>
<?php
$str = 'abcdef';
echo strlen($str); // 6
$str = ' ab cd ';
echo strlen($str); // 7
?>
<?php
$string='YourString';
echo strlen($string); //outputs 10
/***
how do it will count
Y | o | u | r | S | t | r | i | n | g
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10
***/
?>